Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 1.24 KB

File metadata and controls

20 lines (14 loc) · 1.24 KB

Dead Field

Definition:

  • Occurs when a class or its super classes have fields that are never used by any test method. Often dead fields are inherited. This can indicate a non-optimal inheritance structure, or that the super class conflicts with the single responsibility principle. Also, dead fields within the test class itself can indicate incomplete or deprecated development activities.

References:

Quality attributes